@font-face {
  font-family: 'Gendry';
  src: url('fonts/GendyRegular.woff2') format('woff2'),
    url('fonts/GendyRegular.woff') format('woff'),
    url('fonts/gendy.otf') format('opentype');
  /* Fallback */
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'GothamBook';
  src: url('fonts/GothamBook.woff2') format('woff2'),
    url('fonts/GothamBook.woff') format('woff'),
    url('fonts/GothamBook.ttf') format('opentype');
  /* Fallback */
  font-weight: normal;
  font-style: normal;
}

/* Navbar Styles */
.navbar {
  background-color: transparent;
  color: white;
  padding: 10px 20px;
  z-index: 1;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.Burger,
.logo {
  height: 100px;
  margin-left: 1%;
}

/* Navigation Links */
.nav-links {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
  font-family: 'GothamBook', sans-serif;
  font-size: 150%;
  font-weight: 600;
}

.nav-links a {
  text-decoration: none;
  color: white;
  padding: 5px 10px;
  transition: background-color 0.3s;
}

.nav-links a:hover {
  background-color: #1f234f;
  border-radius: 5px;
}

/* Toggle Button for Mobile */
.menu-toggle {
  display: none;
  font-size: 1.5em;
  background: none;
  color: white;
  border: none;
  cursor: pointer;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #333;
    position: absolute;
    top: 60px;
    right: 20px;
    width: 200px;
    border-radius: 5px;
  }

  .nav-links li {
    margin: 2% 0;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .Burger,
  .logo {
    height: 100px;
  }
}

@media (max-width: 768px) {

  .Burger,
  .logo {
    height: 50px;
  }

}